 :root {
     --cream: #f9f6f1;
     --charcoal: #1c1c1e;
     --gold: #c8a96e;
     --muted: #6b7280;
     --card-radius: 14px;
     --green-badge: #1a7f5a;
 }

 body {
     background-color: var(--cream);
     font-family: 'DM Sans', sans-serif;
     color: var(--charcoal);
 }

 h1,
 h2,
 .hotel-name {
     font-family: 'Playfair Display', serif;
 }

 /* ── Top bar ── */
 .top-bar {
     background: #fff;
     border-bottom: 1px solid #e5e7eb;
     padding: 14px 0;
 }

 .top-bar h2 {
     font-size: 1.4rem;
     font-weight: 600;
     margin: 0;
 }

 .sort-btn {
     border: 1px solid #d1d5db;
     border-radius: 20px;
     background: #fff;
     font-size: .85rem;
     color: var(--charcoal);
     padding: 6px 16px;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     cursor: pointer;
     transition: border-color .2s;
 }

 .sort-btn:hover {
     border-color: var(--gold);
 }

 .search-input-btn {
     background: var(--charcoal);
     color: #fff;
     border: none;
     border-radius: 10px;
     padding: 8px 28px;
     font-family: 'DM Sans', sans-serif;
     font-weight: 500;
     cursor: pointer;
     transition: background .2s;
 }

 .search-input-btn:hover {
     background: #333;
 }

 /* ── Search type cards ── */
 .search-type-card {
     background: #fff;
     border: 1px solid #e5e7eb;
     border-radius: 12px;
     overflow: hidden;
     cursor: pointer;
     transition: box-shadow .2s, border-color .2s;
     text-align: center;
 }

 .search-type-card:hover {
     box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
     border-color: var(--gold);
 }

 .search-type-card img {
     width: 100%;
     height: 90px;
     object-fit: cover;
 }

 .search-type-card .label {
     padding: 8px 0 10px;
     font-size: .85rem;
     font-weight: 500;
     color: var(--charcoal);
 }

 /* ── Sidebar ── */
 .sidebar {
     background: #fff;
     border-radius: 14px;
     border: 1px solid #e5e7eb;
     padding: 20px;
     position: sticky;
     top: 16px;
 }

 .sidebar h6 {
     font-size: .75rem;
     text-transform: uppercase;
     letter-spacing: .08em;
     color: var(--muted);
     margin-bottom: 12px;
 }

 .filter-item {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 10px;
     font-size: .88rem;
 }

 .filter-item .count {
     color: var(--muted);
     font-size: .8rem;
 }

 .filter-item input[type="checkbox"] {
     accent-color: var(--charcoal);
     width: 15px;
     height: 15px;
     cursor: pointer;
 }

 .filter-item label {
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
     margin: 0;
 }

 .see-more {
     color: var(--gold);
     font-size: .83rem;
     font-weight: 500;
     cursor: pointer;
     background: none;
     border: none;
     padding: 0;
 }

 .see-more:hover {
     text-decoration: underline;
 }

 hr.filter-divider {
     border-color: #f0f0f0;
     margin: 16px 0;
 }

 /* ── Hotel card ── */
 .hotel-card {
     background: #fff;
     border-radius: var(--card-radius);
     border: 1px solid #e5e7eb;
     overflow: hidden;
     transition: box-shadow .25s, transform .25s;
 }

 .hotel-card:hover {
     box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
     transform: translateY(-3px);
 }

 .hotel-card .img-wrap {
     position: relative;
     overflow: hidden;
 }

 .hotel-card .img-wrap img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     display: block;
     transition: transform .4s ease;
 }

 .hotel-card:hover .img-wrap img {
     transform: scale(1.04);
 }

 .wishlist-btn {
     position: absolute;
     top: 12px;
     right: 12px;
     background: rgba(255, 255, 255, .92);
     border: none;
     width: 34px;
     height: 34px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background .2s;
     box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
 }

 .wishlist-btn:hover {
     background: #fff;
 }

 .wishlist-btn i {
     color: #e53e3e;
     font-size: 1rem;
 }

 .carousel-ctrl {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, .88);
     border: none;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
     font-size: .75rem;
     color: var(--charcoal);
     transition: background .2s;
 }

 .carousel-ctrl:hover {
     background: #fff;
 }

 .carousel-ctrl.prev {
     left: 10px;
 }

 .carousel-ctrl.next {
     right: 10px;
 }

 .hotel-card .card-body {
     padding: 14px 16px 16px;
 }

 .neighborhood {
     font-size: .7rem;
     text-transform: uppercase;
     letter-spacing: .1em;
     color: var(--muted);
     margin-bottom: 4px;
 }

 .hotel-name {
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 4px;
     line-height: 1.3;
 }

 .hotel-desc {
     font-size: .78rem;
     color: var(--muted);
     margin-bottom: 10px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .card-footer-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .price-tag {
     font-weight: 500;
     font-size: .9rem;
     color: var(--charcoal);
 }

 .rating-badge {
     background: var(--green-badge);
     color: #fff;
     font-size: .78rem;
     font-weight: 700;
     padding: 3px 8px;
     border-radius: 6px;
 }

 .rating-label {
     font-size: .72rem;
     color: var(--muted);
     text-align: right;
     line-height: 1.3;
 }

 .rating-group {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 /* ── Vertical label ── */
 .vertical-label {
     writing-mode: vertical-rl;
     transform: rotate(180deg);
     font-size: .7rem;
     letter-spacing: .12em;
     text-transform: uppercase;
     color: var(--muted);
     white-space: nowrap;
     padding: 8px 4px;
     border-left: 2px solid #e5e7eb;
 }

 /* ── Responsive tweaks ── */
 @media (max-width: 767px) {
     .hotel-card .img-wrap img {
         height: 180px;
     }

     .search-type-card img {
         height: 70px;
     }
 }